home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Il Mio Computer 2006 May
/
Mico05CD.bin
/
Utility
/
QuickZip
/
quickzip.exe
/
{app}
/
Scripts
/
File
/
Add With Password.akp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2005-06-28
|
318 b
|
14 lines
var p : TStrings;
i : integer;
k : string;
begin
p := Param;
open(ChangeFileExt(p.strings[0],'.zip'));
k := Readln('Please enter password');
Password(k);
for i := 0 to p.count -1 do
add(p.strings[i]);
if k <> '' then begin DoAdd; application.terminate; end else
Showmessage('Cancelled');
end.